body {
    background-color: #CCFFFF;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family:Arial, Helvetica, sans-serif;
    color: #660033;
    text-align: center;
}

.icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.about-container {
    width: 60%;
}

.about-container h1 {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: #009999;
    margin-bottom: 20px;
}

.description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

.links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links li {
    margin: 10px 0;
}

.links a {
    text-decoration: none;
    color: #660033;
    font-weight: bold;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #009999;
}